<html>

<head>
<title>Insert the title of the document here</title>
</head>

<body>
<body bgcolor="eeeeee">
Insert your entire document-including other HTML codes-in between the <body> and </body> tags
<h1>formats text as the largest heading</h1>
<h2>formats text as the second largest heading</h2>
<h3>formats text as the third largest heading</h3>
<h4>formats text as the fourth largest heading</h4>
<b>boldface text</b>
<i>italicizes text</i>
<u>underlines text</u>
<center>centers text</center>
<font face="Courier" size="5" color="#FF0000">text</font>
<p>insert a paragraph break</p>
<br> inserts a line break</br>
<hr> inserts a horizontal rule (line)</hr>
<a href="http://www.google.com.tr">This is the link</a>
<a href="mailto:yourname@domain.com"</a>click here to e-mail me</a>
<ul>
<li>item one
<li>item two
<li>item three
</ul>
<ol>
<li>item one
<li>item two
<li>item three
</ol>


</body>

</html>